Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / clients / {id} / protocol-mappers / protocol / {protocol}

Map of mappers by name for a specific protocol

Path parameters:
realm - realm name (not id!)
id - id of client (not client-id)
protocol -

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients/{id}/protocol-mappers/protocol/{protocol}Map of mappers by name for a specific protocol

Method Detail

GET /admin/realms/{realm}/clients/{id}/protocol-mappers/protocol/{protocol}

Map of mappers by name for a specific protocol

HTTP Example:
GET /admin/realms/{realm}/clients/{id}/protocol-mappers/protocol/{protocol}
API Example:

ProtocolMappersResource.getMappersPerProtocol({'realm': /* name realm name (not id!) */,
  'id': /* id id of client (not client-id) */,
  'protocol': /* protocol */});

Output:
List<ProtocolMapperRepresentation> -
Produces:
application/json

Keycloak REST Services 1.5.0-Final